type github.com/klauspost/compress/huff0.cTableEntry

8 uses

	github.com/klauspost/compress/huff0 (current package)
		bitwriter.go#L58: func (b *bitWriter) encFourSymbols(encA, encB, encC, encD cTableEntry) {
		compress.go#L449: type cTableEntry struct {
		compress.go#L461: 		s.cTable = make([]cTableEntry, s.symbolLen, maxSymbolValue+1)
		compress.go#L465: 			s.cTable[i] = cTableEntry{}
		decompress.go#L136: 		cTable = make([]cTableEntry, 0, maxSymbolValue+1)
		decompress.go#L144: 			cTable[n] = cTableEntry{
		decompress.go#L156: 		cTable[n] = cTableEntry{
		huff0.go#L178: type cTable []cTableEntry